go/ast.EmptyStmt.Semicolon (field)

6 uses

	go/ast (current package)
		ast.go#L635: 		Semicolon token.Pos // position of following ";"
		ast.go#L783: func (s *EmptyStmt) Pos() token.Pos      { return s.Semicolon }
		ast.go#L807: 		return s.Semicolon
		ast.go#L809: 	return s.Semicolon + 1 /* len(";") */

	go/parser
		parser.go#L2498: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: p.lit == "\n"}
		parser.go#L2502: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: true}